summaryrefslogtreecommitdiffstats
path: root/src/org/uic/barcode/ticket/api/spec/IDocumentData.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/uic/barcode/ticket/api/spec/IDocumentData.java')
-rw-r--r--src/org/uic/barcode/ticket/api/spec/IDocumentData.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/org/uic/barcode/ticket/api/spec/IDocumentData.java b/src/org/uic/barcode/ticket/api/spec/IDocumentData.java
new file mode 100644
index 0000000..6bfe048
--- /dev/null
+++ b/src/org/uic/barcode/ticket/api/spec/IDocumentData.java
@@ -0,0 +1,32 @@
+/*
+ *
+ */
+package org.uic.barcode.ticket.api.spec;
+
+/**
+ * The Interface IDocumentData.
+ *
+ * IDocumentData is the super class of transport documents and customer cards. It provides a token.
+ *
+ */
+public interface IDocumentData {
+
+ /**
+ * Gets the token.
+ *
+ * @return the token
+ */
+ public IToken getToken();
+
+ /**
+ * Sets the token.
+ *
+ * @param token the new token
+ */
+ public void setToken(IToken token);
+
+
+
+
+
+}